home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 6 / Hot Mix 6.iso / bin / Remove_sclib < prev    next >
Text File  |  1993-10-28  |  496b  |  21 lines

  1. #!/bin/csh -f
  2.  
  3. set CD_PATH=$HOTMIXDIR/bin
  4.  
  5. cd $CD_PATH
  6. xwsh -holdonerror -bg royalblue -fg white -fn rk16 \
  7.     -geom 75x15+100+100 -cursorfg violetred1 -cursorbg violetred1 \
  8.     -e /bin/csh -c \
  9.     "echo ; \
  10.      echo You will need to be root to remove the Showcase library.; \
  11.      echo If your system has a ROOT password, you must enter it.; \
  12.      echo If you have no ROOT password, you will not be prompted for it.; \
  13.      echo ; \
  14.      su root -c './Remove_sclib2'"
  15.  
  16. if ($? == 0)
  17.    exit 0
  18. else 
  19.    exit 1
  20. endif
  21.